std::unordered_map::at
From Cppreference
< cpp | container | unordered map
| T& at( const Key& key );
| (1) | (C++0x feature) |
| T& at( Key&& key );
| (2) | (C++0x feature) |
| This section is incomplete Reason: exception link |
Contents |
Parameters
| key | - | the key of the element to find |
Return value
reference to the mapped value of the requested element
Complexity
| This section is incomplete |
See also
| access specified element (public member function) | |